home *** CD-ROM | disk | FTP | other *** search
- on mouseDown
- global gSliderKnopf, gSliderMax, gSliderMin
- repeat while the stillDown
- newV = the mouseV
- if newV < gSliderMin then
- newV = gSliderMin
- else
- if newV > gSliderMax then
- newV = gSliderMax
- end if
- end if
- sprite(gSliderKnopf).locV = newV
- updateStage()
- updateText()
- end repeat
- end
-